home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 42 / Mac Magazin and MacEasy Magazine CD - Issue 42.iso / Software / Mobiles Büro / Newton / Accordian 1.0b / ADF Folder / ActionName.adf next >
Text File  |  1996-09-24  |  2KB  |  56 lines

  1. // ActionName Application
  2. application "ActionNames:IAMBIC" called "AN" with options { "nofolders" "readonly" }
  3.  
  4. // Notes Soup
  5. //
  6. // Gulliver2.adf file for RCU 2.1
  7. // version 0.1 09-21-96
  8. // by Paolo Alberto Casadio
  9. // e-mail: pacasadio@linknet.it
  10. // Compuserve: 72431,362
  11.  
  12. // To-dos ActionNames Soup
  13. soup "To-dos:ActionNames:IAMBIC" called "To Do" of "ActionNames:IAMBIC" range "ANdateRange"
  14.  
  15. overview "todo:date" called "By Date" of "To-dos:ActionNames:IAMBIC" queries "mtgStartDate" contains
  16.     {
  17.     column "Date" width 155 is mtgStartDate
  18.     }
  19.  
  20. class "todo" called "AN To Do Item" of "To-dos:ActionNames:IAMBIC" with options { "readonly" } contains
  21.     {
  22.     mtgStartDate: datetime called "Date"
  23.     mtgDuration: integer called "Duration"
  24.     mtgPriority: integer called "Priority"
  25.     mtgDone: boolean called "Done"
  26.     text: string called "Text"
  27.     notes: note called "Note"
  28.     }
  29.  
  30. // Repeating To-dos ActionNames Soup
  31. soup "RepeatTo-dos:ActionNames:IAMBIC" called "Repeating To Do" of "ActionNames:IAMBIC" range "ANdateRange"
  32.  
  33. overview "rtodo:date" called "By Date" of "RepeatTo-dos:ActionNames:IAMBIC" queries "mtgStartDate" contains
  34.     {
  35.     column "Date" width 155 is mtgStartDate
  36.     }
  37.  
  38. class "todo" called "AN Repeating To Do Item" of "RepeatTo-dos:ActionNames:IAMBIC" with options { "readonly" } contains
  39.     {
  40.     mtgStartDate: datetime called "Start Date"
  41.     mtgStopDate: datetime called "End Date"
  42.     mtgDuration: integer called "Duration"
  43.     mtgPriority: integer called "Priority"
  44.     mtgDone: boolean called "Done"
  45.     text: string called "Text"
  46.     notes: note called "Note"
  47.     }    
  48.  
  49. range "ANdateRange" called "Today" is "<range> [ daystart ... daystart + 1d )"
  50. range "ANdateRange" called "This Week" is "<range> [ weekstart ... weekstart + 1w )"
  51. range "ANdateRange" called "Next Week" is "<range> [ weekstart + 1w ... weekstart + 2w )"
  52. range "ANdateRange" called "This Month" is "<range> [ monthstart ... monthstart + 1m )"
  53. range "ANdateRange" called "Next 30 Days" is "<range> [ daystart ... daystart + 30d )"
  54. range "ANdateRange" called "Next 60 Days" is "<range> [ daystart ... daystart + 60d )"
  55. range "ANdateRange" called "Previous 30 Days" is "<range> [ daystart - 30d ... daystart )"
  56.